home *** CD-ROM | disk | FTP | other *** search
/ Aminet 22 / Aminet 22 (1997)(GTI - Schatztruhe)[!][Dec 1997].iso / Aminet / dev / src / RLD_source.lha / RLD_source / localerexx_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-10-22  |  1.4 KB  |  41 lines

  1. /*
  2.   $Id: localerexx_protos.h,v 1.2 1997/10/21 22:35:08 wegge Stab wegge $
  3.  
  4.   $Log: localerexx_protos.h,v $
  5.   Revision 1.2  1997/10/21 22:35:08  wegge
  6.   Snapshot inden upload af 2.13 i source og binær form
  7.  
  8.   Revision 1.1  1997/10/21 03:49:58  wegge
  9.   Initial revision
  10.  
  11.  */
  12.  
  13. #if !defined(LOCALEREXX_PROTOS_H)
  14. #define LOCALEREXX_PROTOS_H
  15.  
  16. VOID GetLocaleString(struct RexxMatch_ret *RMR, struct RexxMsg *RxMsg);
  17. VOID SupCloseLocale(struct RexxMatch_ret *RMR, struct RexxMsg *RxMsg);
  18. VOID SupOpenLocale(struct RexxMatch_ret *RMR, struct RexxMsg *RxMsg);
  19. VOID GetLocaleVars(struct RexxMatch_ret *RMR, struct RexxMsg *RxMsg);
  20. VOID SupFormatDate(struct RexxMatch_ret *RMR, struct RexxMsg *RxMsg);
  21. VOID SupParseDate(struct RexxMatch_ret *RMR, struct RexxMsg *RxMsg);
  22. VOID rld_GetSysTime(struct RexxMatch_ret *RMR, struct RexxMsg *RxMsg);
  23. VOID I2X(ULONG Val, UBYTE *Buf);
  24. VOID Release_Locale(struct RexxRsrc *Node __asm("a0"), 
  25.             ULONG Base __asm("a6"));
  26.  
  27. struct Locale *FindCookie(struct RexxTask *TaskID, UBYTE *Cookie);
  28. UBYTE *AddCookie(struct RexxTask *TaskID, struct Locale *AddLocale);
  29. VOID DelCookie(struct RexxTask *TaskID, UBYTE *Cookie);
  30.  
  31. ULONG StringWriteHook(struct Hook *ThisHook __asm("a0"),
  32.               ULONG AddChr __asm("a1"), struct Locale
  33.               *ThisLocale __asm("a2"));
  34. ULONG StringReadHook(struct Hook *ThisHook __asm("a0"),
  35.               ULONG AddChr __asm("a1"), struct Locale
  36.               *ThisLocale __asm("a2"));
  37.  
  38.  
  39.  
  40. #endif /* LOCALEREXX_PROTOS_H */
  41.